home *** CD-ROM | disk | FTP | other *** search
- this.xTab = new XML();
- this.xTab.ignoreWhite = true;
- this.xTab.controller = this;
- this.xTab.onLoad = function()
- {
- var root = this.firstChild;
- var i = 0;
- while(i < 4)
- {
- if(root.childNodes[i] != null)
- {
- if(root.childNodes[i].attributes.label != "")
- {
- _root[i + "_TAB"].tfLabel.text = root.childNodes[i].attributes.label;
- }
- trace(_root[i + "_TAB"].tfLabel.text);
- _root[i + "_TAB"]._visible = root.childNodes[i].attributes.visible != "true" ? false : true;
- }
- i++;
- }
- };
- this.xTab.load("tab.xml");
-